home *** CD-ROM | disk | FTP | other *** search
/ PC Basics 53 / PC Basics Issue 53.iso / Software / Internet / Invboard.exe / PC Basics 53 / Invboard / upload / Skin / s1 / skin_printpage.php < prev    next >
Encoding:
PHP Script  |  2002-06-12  |  1.1 KB  |  52 lines

  1. <?php
  2.  
  3. class skin_printpage {
  4.  
  5.  
  6.  
  7. function pp_postentry($poster, $entry ) {
  8. global $ibforums;
  9. return <<<EOF
  10.  <b>{$ibforums->lang['by']}: {$entry['author_name']}</b> {$this->class['LANG']['on']} {$entry['post_date']}
  11.  <br><br>
  12.  {$entry['post']}
  13.  <hr>
  14. EOF;
  15. }
  16.  
  17. function pp_end() {
  18. global $ibforums;
  19. return <<<EOF
  20.     <i>{$ibforums->lang['end']}</i>
  21.     </td>
  22.     </tr>
  23.     </table>
  24. EOF;
  25. }
  26.  
  27. function pp_header($forum_name, $topic_title, $topic_starter) {
  28. global $ibforums;
  29. return <<<EOF
  30.     <html>
  31.     <head>
  32.     <title>{$ibforums->vars['board_name']} [Powered by IB Forums]</title>
  33.     </head>
  34.     <body bgcolor='#FFFFFF' alink='#000000' vlink='#000000' link='#000000'>
  35.     <table width='90%' border='0' align='center'>
  36.     <tr>
  37.     <td>
  38.     <font face='arial' size='3' color='#000000'>
  39.     <b>{$ibforums->lang['title']}</b>
  40.     <br><br>
  41.     -{$ibforums->vars['board_name']}<br>
  42.     +--{$ibforums->lang['forum']}: $forum_name<br>
  43.     +---{$ibforums->lang['topic']}: $topic_title {$ibforums->lang['start']} $topic_starter
  44.     <hr noshade size='1' color='#000000'>
  45.     <br>
  46.     <br>
  47. EOF;
  48. }
  49.  
  50.  
  51. }
  52. ?>